iT邦幫忙

2022 iThome 鐵人賽

DAY 8
0

陣列 (array) 是一個有序的序列,陣列中可以儲存不定數量的任何值,
陣列在 JavaScript 中屬於複合資料型態 (composite data type)。

基本

let a = ['blue', 'yellow',,,'red'];

塞入資料 ✚

push (塞入資料至最後面)

let a = ['blue', 'yellow',,,'red'];
a.push('black');

unshift (插入資料至最前面)

let a = ['blue', 'yellow',,,'red'];
a.unshift('black');

刪除陣列資料 −

pop (刪除後面)

let a = ['blue', 'yellow',,,'red'];
a.pop();

shift (刪除前面)

let a = ['blue', 'yellow',,,'red'];
a.shift();

刪除特定資料

陣列操作 GO


上一篇
物件
下一篇
陣列操作
系列文
JavaScript亂記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言